home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / simulato / v2_3_mc6.tz / v2_3_mc6 / testfiles / dbr.asm < prev    next >
Assembly Source File  |  1994-05-02  |  542b  |  24 lines

  1. ;
  2. ;  dbr.asm.
  3. ;  C. Ward 2/7/93.
  4. ;  Yet another simple program.  This time to test the dbra instruction
  5. ;  and the input character routine.  Does not generate any output.
  6. ;  Reads in exactly six characters placing some checksum value into
  7. ;  d0.  Don't ask me what the checksum is!
  8. ;
  9.         ORG $1000
  10.         MOVE    #6,D5
  11. loop    move    d5,d0
  12.         AND.B   #$03,D0
  13.         ORI.B   #$30,D0
  14.         MOVE    #$30,D1
  15.         ADD     D1,D0
  16.         move    #248,d7
  17.         trap    #14
  18.         dbra    d5,loop
  19.         move    #228,d7
  20.         trap    #14
  21.         end
  22.  
  23.  
  24.